home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / dopus412-gpl / dopus_disk / strings.c < prev   
C/C++ Source or Header  |  2000-02-28  |  4KB  |  212 lines

  1. /*
  2.  
  3. Directory Opus 4
  4. Original GPL release version 4.12
  5. Copyright 1993-2000 Jonathan Potter
  6.  
  7. This program is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU General Public License
  9. as published by the Free Software Foundation; either version 2
  10. of the License, or (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. All users of Directory Opus 4 (including versions distributed
  22. under the GPL) are entitled to upgrade to the latest version of
  23. Directory Opus version 5 at a reduced price. Please see
  24. http://www.gpsoft.com.au for more information.
  25.  
  26. The release of Directory Opus 4 under the GPL in NO WAY affects
  27. the existing commercial status of Directory Opus 5.
  28.  
  29. */
  30.  
  31. #include "diskop.h"
  32.  
  33. char **string_table;
  34.  
  35. struct DefaultString
  36.     default_strings[]={
  37.         {STR_FORMAT_NAME,
  38.         "_Name"},
  39.  
  40.         {STR_FORMAT_FFS,
  41.         "_Fast File System"},
  42.  
  43.         {STR_FORMAT_INTERNATIONAL,
  44.         "_International Mode"},
  45.  
  46.         {STR_FORMAT_CACHING,
  47.         "_Directory Caching"},
  48.  
  49.         {STR_FORMAT_TRASHCAN,
  50.         "_Put Trashcan"},
  51.  
  52.         {STR_FORMAT_VERIFY,
  53.         "_Verify"},
  54.  
  55.         {STR_FORMAT_FORMAT,
  56.         "Format"},
  57.  
  58.         {STR_FORMAT_QUICKFORMAT,
  59.         "Quick Format"},
  60.  
  61.         {STR_FORMAT_EXIT,
  62.         "Exit"},
  63.  
  64.         {STR_FORMAT_EMPTY,
  65.         "Empty"},
  66.  
  67.         {STR_FORMAT_INFODISPLAY,
  68.         "%ld tracks, %ld bytes/trk, %s"},
  69.  
  70.         {STR_FORMAT_FORMATTING,
  71.         "Formatting %ld, %ld to go"},
  72.  
  73.         {STR_FORMAT_VERIFYING,
  74.         "Verifying  %ld, %ld to go"},
  75.  
  76.         {STR_FORMAT_INITIALISING,
  77.         "Initialising disk..."},
  78.  
  79.         {STR_FORMAT_FORMATERROR,
  80.         "Format error on track %ld"},
  81.  
  82.         {STR_FORMAT_ERRORVERIFYING,
  83.         "Error verifying track %ld"},
  84.  
  85.         {STR_FORMAT_VERIFYERROR,
  86.         "Verify error on track %ld"},
  87.  
  88.         {STR_SUCCESS,
  89.         "Operation successful"},
  90.  
  91.         {STR_FAILED_ERROR,
  92.         "Operation failed"},
  93.  
  94.         {STR_MEMORY_ERROR,
  95.         "Not enough memory"},
  96.  
  97.         {STR_BITMAP_ERROR,
  98.         "Bitmap error"},
  99.  
  100.         {STR_DEVICE_ERROR,
  101.         "Device error"},
  102.  
  103.         {STR_NODEVICE_ERROR,
  104.         "Couldn't open device"},
  105.  
  106.         {STR_RETRY,
  107.         "Retry"},
  108.  
  109.         {STR_NODISKPRESENT,
  110.         "No disk present in %s"},
  111.  
  112.         {STR_DISKWRITEPROTECTED,
  113.         "Disk in %s is write protected"},
  114.  
  115.         {STR_ABORTED,
  116.         "Aborted..."},
  117.  
  118.         {STR_FORMAT_MAKINGTRASHCAN,
  119.         "Creating Trashcan..."},
  120.  
  121.         {STR_DISK_NOT_BLANK,
  122.         "Disk in drive %s is not blank!\n\nVolume \"%s\" contains %s.\n\n"
  123.         "All data will be erased.\nChoose Proceed to continue the %s."},
  124.  
  125.         {STR_PROCEED,
  126.         "Proceed"},
  127.  
  128.         {STR_CHECKING_DESTINATION,
  129.         "Checking destination disk..."},
  130.  
  131.         {STR_DISKCOPY_DISKCOPY,
  132.         "Diskcopy"},
  133.  
  134.         {STR_DISKCOPY_FROM,
  135.         "From..."},
  136.  
  137.         {STR_DISKCOPY_TO,
  138.         "To..."},
  139.  
  140.         {STR_DISKCOPY_INFODISPLAY,
  141.         "%s, %s used"},
  142.  
  143.         {STR_DISKCOPY_NODISK,
  144.         "No disk info available"},
  145.  
  146.         {STR_CHECKING_DISKS,
  147.         "Checking disk(s)..."},
  148.  
  149.         {STR_DISKCOPY_READING,
  150.         "Reading    %ld, %ld to go"},
  151.  
  152.         {STR_DISKCOPY_WRITING,
  153.         "Writing    %ld, %ld to go"},
  154.  
  155.         {STR_DISKCOPY_READERROR,
  156.         "Read error on track %ld"},
  157.  
  158.         {STR_DISKCOPY_WRITEERROR,
  159.         "Write error on track %ld"},
  160.  
  161.         {STR_DISKCOPY_INSERTSOURCE,
  162.         "Insert source disk in %s"},
  163.  
  164.         {STR_DISKCOPY_INSERTDEST,
  165.         "Insert destination disk in %s"},
  166.  
  167.         {STR_INSTALL_INSTALL,
  168.         "Install"},
  169.  
  170.         {STR_INSTALL_NOBOOT,
  171.         "No Boot"},
  172.  
  173.         {STR_INSTALL_NOINFO,
  174.         "Bootblock info unavailable"},
  175.  
  176.         {STR_INSTALL_NOTBOOTABLE,
  177.         "Disk is not bootable"},
  178.  
  179.         {STR_INSTALL_NORMAL,
  180.         "Normal %s %s bootblock"},
  181.  
  182.         {STR_INSTALL_NONSTANDARD,
  183.         "Non-standard bootblock"},
  184.  
  185.         {STR_INSTALL_ERRORWRITING,
  186.         "Error writing bootblock!"},
  187.  
  188.         {STR_INVALID_DISK,
  189.         "Disk is unsuitable for installing"},
  190.  
  191.         {STR_INSTALL_INSTALLINGDISK,
  192.         "Installing disk..."},
  193.  
  194.         {STR_CANCEL,
  195.         "Cancel"},
  196.  
  197.         {STR_BUMP_NAMES,
  198.         "_Bump name"},
  199.  
  200.         {STR_BUMPING_NAME,
  201.         "Bumping disk name..."},
  202.  
  203.         {STR_DISKCOPY_CHECK,
  204.         "Check"},
  205.  
  206.         {STR_STRING_COUNT,NULL}};
  207.  
  208. #ifdef STRINGS_ONLY
  209. char string_type[]="DOpus_Disk strings";
  210. char *string_save="DM_Disk_%s.STR";
  211. #endif
  212.